home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / QuickTime VR / MacOS / QuickDraw™ 3D 1.0.6F4 SDK / Development / RAVE DDK 1.0.6 GM for MacOS / Projects / Empty Engine Code / TtPoint.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-30  |  1.2 KB  |  37 lines  |  [TEXT/MPCC]

  1. /******************************************************************************
  2.  **                                                                             **
  3.  **     Module:        TtPoint.c                                                 **
  4.  **                                                                          **
  5.  **     Purpose:     Empty rasterizer drawing engine.                         **
  6.  **                 Methods for drawing points.                                 **
  7.  **                                                                          **
  8.  **     Author:        Mike Kelley                                                 **
  9.  **                                                                          **
  10.  **                    2/3/95    Revised for 0.9 SDK release                         **
  11.  **                                                                          **
  12.  **     Copyright (C) 1994-95 Apple Computer, Inc.  All rights reserved.     **
  13.  **     Apple Computer Confidential                                             **
  14.  **                                                                          **
  15.  *****************************************************************************/
  16.  
  17. /* System */
  18. #include <stdlib.h>
  19. #include <math.h>
  20.  
  21. #include "Drive3D.h"
  22. #include "Drive3D_system.h"
  23. #include "TtTinselTown.h"
  24.  
  25. /************************************************************************************************
  26.  * Draw a point.
  27.  ***********************************************************************************************/
  28.  
  29. void TtDrawPoint (
  30.     const TQADrawContext    *drawContext,        /* Draw context */
  31.     const TQAVGouraud     *v)                /* Vertex */
  32. {
  33.     TTtDrawPrivate        *myPrivate;
  34.     
  35.     myPrivate = (TTtDrawPrivate *) drawContext->drawPrivate;
  36. }
  37.